home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / Libraries / SAT 2.3b4 / Misc / TransSkel / PPCTransSkelCallProcs.p < prev    next >
Text File  |  1995-01-27  |  927b  |  21 lines

  1. unit PPCTransSkelCallProcs;
  2. interface
  3.     uses
  4.         Types, QuickDraw, Events, Windows, Dialogs, Fonts, DiskInit, TextEdit, Traps,{}
  5.         Memory, SegLoad, Scrap, ToolUtils, {}
  6.         OSUtils, Menus, Resources, StandardFile, GestaltEqu,
  7.         Files, Errors, Traps;
  8.  
  9.     procedure CallpMouse (thePoint: Point; theTime: longint; theMods: integer; myProc: ProcPtr);
  10.     procedure CallpKey (theChar: char; theMods: integer; myProc: ProcPtr);
  11.     procedure CallpEvent (theitem: integer; var theEvent: EventRecord; myProc: ProcPtr);
  12.     function CallotherEvent (var theEvent: EventRecord; myProc: ProcPtr): Boolean;
  13.     procedure CallpBoolean (myBool: Boolean; myProc: ProcPtr);
  14.     procedure CallpInt (myInt: integer; myProc: ProcPtr);
  15.     procedure CallpMenu (myMenu: MenuHandle; myProc: ProcPtr);
  16.     procedure Callpnoarg (myProc: ProcPtr);
  17.     procedure Callpfilter (theDialog: DialogPtr; var theEvent: EventRecord; var result: Boolean; myProc: ProcPtr);
  18.  
  19. implementation
  20. end.
  21.